home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1997 February / macformat-047.iso / Demos / Days of Rage Demo / DORDEM.Dxr / 00198.ls < prev    next >
Encoding:
Text File  |  1996-11-15  |  427 b   |  20 lines

  1. on exitFrame
  2.   global gAuto
  3.   if gAuto = 1 then
  4.     repeat with x = 50 down to 0
  5.       set the blend of sprite 2 to x * 2
  6.       updateStage()
  7.     end repeat
  8.     set the ink of sprite 2 to 1
  9.     updateStage()
  10.     puppetSprite(2, 0)
  11.     repeat with x = 50 down to 0
  12.       set the blend of sprite 4 to x * 2
  13.       updateStage()
  14.     end repeat
  15.     set the ink of sprite 4 to 1
  16.     updateStage()
  17.     puppetSprite(4, 0)
  18.   end if
  19. end
  20.